home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 61 / CDRom61.iso / Programas / Express Search / exp_setup.exe / EXWEBDOCS.EXE / Express / Program / webdocs / template / showhelp.js < prev    next >
Encoding:
Text File  |  1999-05-27  |  444 b   |  25 lines

  1. <SCRIPT LANGUAGE="JavaScript">
  2. <!--
  3.  
  4. function showhelppage(page_path){
  5.     var help_url = "$EXP_HELPURL";
  6.     if ((page_path != null)&&(page_path.length != 0)){
  7.         help_url = help_url+page_path;    
  8.     }
  9.     win=window.open(help_url,'ExpressHelp');
  10.     if (navigator.appName.indexOf('Netscape')!=-1) {
  11.         win.focus();
  12.     }
  13. }
  14. function showhelp() {
  15.     showhelppage(null);
  16. }
  17.  
  18. function showQuicktour(){
  19.     showhelppage("tour/");
  20. }
  21.  
  22.  
  23. //-->
  24. </SCRIPT>
  25.